:root {
  --white: #ffffff;
	--green: #35792A;
	--blue: #00587C;
	--darkgreen: #034c1f;
	--black: #63666a;
	--yellow: #C6D52F;
	--lightyellow: rgba(198, 213, 47, 0.7);
	--black10: rgba(0,0,0,0.1);
	--black70: rgba(0,0,0,0.7);
	--form-control-color: #00587C;
}

*, * * {
	box-sizing: border-box;
}

html,
body {
  width: 100%;
  height: 100%;
  margin: 0;
  overflow-x: hidden;
  background-color: var(--white);
  font-family: Roboto, arial, sans-serif;
}

sub, sup {
	font-size: 50%;
	line-height: 0;
	position: relative;
	vertical-align: baseline;
}

sup {
	top: -0.7em;
}

sub {
	bottom: -0.25em;
}

p {
	font: normal normal normal 18px/28px Roboto;
	color: var(--black);
	margin: 0;
	padding; 0 0 1em 0;
}

a {
	font: normal normal normal 18px/28px Roboto;
	color: var(--green);
}

h1 {
	font: normal normal bold 36px/42px Roboto;
	color: var(--yellow);
	letter-spacing: 0px;
	margin: 0;
}

h2 {
	font: normal normal 300 30px/35px Roboto;
	letter-spacing: 0px;
	color: var(--green);
	margin: 0 0 1em 0;
}

h3 {
	font: normal normal bold 28px/30px Roboto;
	letter-spacing: 0px;
	color: var(--green);
	margin: 0 0 0.5em 0;
}

picture {
	display: block;
	max-width: 100%;
}

picture img {
	display: block;
	object-fit: cover;
	max-width: 100%;
	margin: 0 auto;
}

blockquote {
	background-color: #f5f5f5;
	padding: 20px 30px;
	margin: 20px 0;
}

.green {
	color: var(--green);
}

#page-wrapper {
	overflow: hidden;
}

.content-wrapper {
	max-width: 1175px;
	margin: 0 auto;
	padding: 0 15px;
}

.eyebrow {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: center;
	padding: 25px 15px !important;
}

.hero {
	position: relative;
	width: 100%;
	padding: 0;
	margin: 0;
	background-color: var(--green);
	display: grid;
	grid-template-rows: auto 35px 35px 35px 35px 1fr;
	grid-template-columns: 10% 1fr 10%;
	grid-row-gap: 50px;
	grid-template-areas:
		'tx tx tx'
		'tx tx tx'
		'tx tx tx'
	  'im im im'
	  'im im im'
	  'im im im';
}
.hero .text {
	grid-area: tx;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: center;
	padding: 25px 8%;
}
.hero .logo {
	margin-bottom: 30px;
}
.hero .text p {
	color: var(--white);
	font-size: 24px;
	line-height: 28px;
}
.hero .people {
	grid-area: im;
	height: 100%;
	display: flex;
	overflow: hidden;
	width: 100%;
	height: 100%;
}
.hero .people img {
	object-fit: cover;
	object-position: center;
	height: auto;
	max-width: unset;
	width: 100%;
}
.hero .pattern {
	grid-column-start: 1;
	grid-column-end: 4;
	grid-row-start: 3;
	grid-row-end: 6;
	align-self: center;
	justify-self: center;
	width: 100%;
}
.hero .pattern img {
	width: 100%;
}

.menu {
	background-color: var(--darkgreen);
	color: var(--white);
}
.menu ul {
	list-style: none;
	margin: 0;
	padding: 25px 15px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}
.menu li {
	text-align: center;
}
.menu li:not(:last-of-type) {
	border-bottom: 1px solid var(--yellow);
}
.menu a {
	color: var(--white);
	text-decoration: none;
}
.menu a.active {
	color: var(--yellow);
}
.menu a:focus,
.menu a:hover {
	text-decoration: underline;
}

.sect {
	padding-top: 25px;
	padding-bottom: 25px;
}

.pad {
	padding-left: 20px;
	padding-right: 20px;
}

.yellowribbon {
	position: relative;
	background-color: #F1F5CB;
	z-index: 1;
}
.yellowribbon::before {
	content: "";
	position: absolute;
	height: 100%;
	left: -100vw;
	top: 0;
	width: 100vw;
	background-color: #F1F5CB;
	z-index: 0;
}
.yellowribbon::after {
	content: "";
	position: absolute;
	height: 100%;
	right: -50px;
	top: 0;
	width: 50px;
	background-color: #F1F5CB;
	z-index: 0;
}

.iconlist {
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	align-items: flex-start;
	padding: 0 15px;
}

.icon {
	padding: 50px 0 50px 80px;
	position: relative;
}
.icon.big {
	padding: 50px 0 50px 120px;
}
.icon.big h3 {
	font-weight: normal;
}
.icon.big h3 strong {
	font-weight: bold;
}
.icon:not(:last-of-type) {
	border-bottom: 1px solid var(--yellow);
}
.icon .link {
	display: flex;
	flex-direction: row;
	justify-content: flex-start;
	align-items: center;
	padding: 10px 0;
}
.icon .right {
	width: 168px;
	box-shadow: 5px 5px 13px 2px rgba(0,0,0,0.1);
}
.icon .iconimage {
	position: absolute;
	top: 50px;
	left: 0;
}
.icon ul {
	list-style: none;
	margin: 0;
	padding: 0;
}
.icon li {
	color: var(--black);
	position: relative;
	font: normal normal normal 18px/28px Roboto;
	padding-left: 10px;
	padding-bottom: 5px;
}
.icon li:before {
	content: "•";
	color: var(--yellow);
	position: absolute;
	left: 0px;
}
.mini-iconlist {
	border-bottom: 1px solid var(--yellow);
}
.mini-iconlist p {
	position: relative;
	padding: 0 0 40px 80px;
}
.mini-iconlist p strong {
	color: var(--green);
}
.mini-iconlist img{
	position: absolute;
	left: 0;
	top: 0;
}

.preview {
	width: 100%;
	height: 0;
	overflow: hidden;
}
.preview.open {
	height: 100%;
}
.preview img {
	max-width: 100%;
}

#overlay-form .form h2 {
	padding-right: 30px;
}
.form-and-body {
	display: flex;
	flex-direction: column-reverse;
	justify-content: flex-start;
	align-items: space-between;
}

.create-account {
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	align-items: flex-start;
	background-color: var(--yellow);
	color: var(--darkgreen);
	padding: 20px 30px;
	margin-bottom: 30px;
}
.create-account h2 {
	font-size: 20px;
	line-height: 24px;
	font-weight: normal;
}

.green-btn {
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	background-color: var(--green);
	color: var(--white);
	padding: 7px 15px;
	text-decoration: none;
	border-radius: 7px;
}
.green-btn:hover,
.green-btn:focus {
	background-color: var(--darkgreen);
}
.green-border-btn {
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	background-color: transparent;
	border: 1px solid var(--green);
	color: var(--green);
	padding: 7px 15px;
	text-decoration: none;
	border-radius: 7px;
}
.green-border-btn:hover,
.green-border-btn:focus {
	background-color: var(--darkgreen);
	color: var(--white);
}
.yellow-btn {
	background-color: var(--yellow);
	color: var(--darkgreen);
	padding: 7px 15px;
	text-decoration: none;
	border-radius: 7px;
}
.yellow-btn:hover,
.yellow-btn:focus {
	background-color: var(--darkgreen);
	color: var(--white);
}


.form {
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	align-items: flex-start;
	background-color: var(--green);
	color: var(--white);
	padding: 20px 30px;
}
.form form {
	max-width: 400px;
	margin: 0 auto;
}
.form h2 {
	font-size: 18px;
	line-height: 22px;
	font-weight: normal;
	color: var(--white);
}
.form div {
	padding-bottom: 8px;
	text-align: left;
}
.form label {
	font-size: 18px;
	line-height: 22px;
	font-weight: normal;
	padding-bottom: 10px;
}
.form label.small {
	font-size: 18px;
	line-height: 22px;
	color: var(--white);
	padding-left: 10px;
}
.form .check {
	display: flex;
	flex-direction: row;
	justify-content: flex-start;
	align-items: flex-start;
}
.form .check .checkbox {
	flex: 1 0 auto;
}
.form .check .small {
	flex: 1;
}
.form .required {
	font-weight: bold;
	font-size: 12px;
	line-height: 14px;
	color: var(--white);
	padding-top: 10px;
	padding-bottom: 15px;
}
.form input {
	height: 40px;
	width: 100%;
	max-width: 300px;
	font-size: 24px;
	color: var(--black);
	padding: 5px 15px;
	display: block;
}
.form input[type="checkbox"] {
	display: inline-block;
	width: 20px;
	height: 20px;
}
.form input[type="submit"] {
	border: 0;
	display: inline-block;
	width: auto;
	font-size: 16px;
	line-height: 18px;
}

.feature-box {
	-webkit-box-shadow: -5px 6px 12px 3px rgba(0,0,0,0.07);
	box-shadow: -5px 6px 12px 3px rgba(0,0,0,0.07);
	border-top: 8px solid var(--yellow);
	margin-bottom: 40px;
	padding: 20px;
	background-color: var(--white);
}
.feature-box .split {
	display: flex;
	flex-direction: column;
}
.feature-box .middle {
	align-items: center;
}
.feature-box img {
	max-width: 100%;
	max-height: 100%;
}
.feature-box .feature-left,
.feature-box .feature-right {
	flex: 1 1 0;
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	align-items: flex-start;
}
.feature-box .copy {
	padding-bottom: 10px;
}
.feature-box .center {
	justify-content: center;
}
.feature-box h3 {
	font-weight: bold;
	color: var(--green);
}
.feature-box h4 {
	font-weight: bold;
	font-size: 20px;
	line-height: 24px;
	color: var(--green);
	margin: 5px 0;
}
.feature-box p {
	margin-bottom: 1em;
}
.feature-box .play-btn {
	margin-bottom: 15px;
}

.feature-box .featured {
	padding-top: 10px;
	font-weight: bold;
	color: var(--green);
}

.bottom-pad {
	padding-bottom: 25px;
}

.cta {
	margin: 15px 0;
}
.cta a {
	display: block;
	margin: 0;
	padding: 0;
}
.cta img {
	max-width: 100%;
}

.grey-block {
	background-color: var(--black10);
	width: 100%;
}

.scroll-component {
	position: relative;
}
.scroll-component .btn-prev,
.scroll-component .btn-next {
	position: absolute;
	top: calc(50% - 43px);
	left: 15px;
	z-index: 2;
	cursor: pointer;
}
.scroll-component .btn-prev {
}
.scroll-component .btn-next {
	transform: scale(-1);
	left: unset;
	right: 15px;
}
.scroll {
	position: relative;
	background-color: var(--green);
	padding: 50px 0;
}
.scroll::before {
	position: absolute;
	content: "";
	width: 22%;
	height: 100%;
	top: 0;
	left: 0;
	z-index: 1;
	background: linear-gradient(90deg, rgba(255,255,255,0.3) 0%, rgba(255,255,255,0) 100%);
}
.scroll::after {
	position: absolute;
	content: "";
	width: 22%;
	height: 100%;
	top: 0;
	right: 0;
	z-index: 1;
	background: linear-gradient(90deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0.3) 100%);
}
.scroll .card {
	width: 276px;
	height: 425px;
	background-color: var(--white);
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	align-items: flex-start;
	text-align: left;
	padding: 70px 50px;
	flex: 0 0 auto;
	margin: 0 auto;
	text-decoration: none;
}
.scroll .card:not(:last-of-type) {
	margin-right: 20px;
}
.scroll h3 {
	color: var(--green);
	font-weight: bold;
	font-size: 22px;
	line-height: 27px;
	margin: 0 0 0 0;
	text-align: left;
}
.scroll img {
	display: block;
	margin-bottom: 30px;
}

.ctas {
	background-color: #f4f5f5;
	padding: 50px 20px 15px 20px;
}
.ctas .wrapper {
	max-width: 1175px;
	margin: 0 auto;
	text-align: center;
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: space-around;
	align-items: center;
}
.ctas .cta {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	margin-bottom: 40px;
}
.ctas .cta p {
	color: var(--black);
	font-weight: bold;
	padding-top: 20px;
}

.footer {
	background-color: var(--black10);
	padding: 30px 20px;
}
.footer p {
	font-size: 12px;
	line-height: 15px;
	padding-bottom: 1em;
}
.footer a {
	font-weight: bold;
	font-size: 13px;
	line-height: 16px;
	text-decoration: none;
}
.footer ul {
	list-style: none;
	margin: 0;
	padding: 25px 0px;
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	align-items: center;
}
.footer a:hover,
.footer a:focus {
	text-decoration: underline;
}
.footer .legal {
	display: flex;
	flex-direction: row;
}
.footer .badge {
	padding: 0 20px 40px 20px;
	text-align: right;
}
.footer .badge img {
	mix-blend-mode: multiply;
}

.footer .wrapper {
	max-width: 1175px;
	margin: 0 auto;
}

/* INDEX SPECIFIC */
.page-header h2 {
	font-weight: bold;
}
.powering-affordable-care h2 .big {
	color: var(--yellow);
	font-size: 35px;
	line-height: 33px;
	font-weight: 700;
}

.powering-affordable-care h2 .small {
	color: var(--green);
	font-size: 28px;
	line-height: 33px;
	font-weight: 300;
}

/* testing specific */
.quest-lab-alert {
	display: flex;
	padding-bottom: 0 !important;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}
.quest-lab-alert img {
	display: block;
}
.quest-lab-alert .right {
	text-align: right;
	width: 257px;
	margin-top: 25px;
}
.quest-lab-alert .btn-blocks {
	display: flex;
	flex-direction: row;
	justify-content: flex-start;
	align-items: flex-start;
	margin-top: 20px;
}

.quest-lab-alert .btn-blocks .btn:not(:last-of-type) {
	margin-right: 20px;
}
.quest-lab-alert .btn-blocks p {
	color: var(--green);
	font-weight: bold;
}

.resources {
	display: inline-grid;
	justify-content: flex-start;
	align-items: flex-start;
	grid-auto-flow: dense;
	grid-gap: 10px;
	grid-template-columns: 1fr;
}
.resource {
	width: 100%;
	-webkit-box-shadow: -5px 6px 12px 3px rgba(0,0,0,0.07);
	box-shadow: -5px 6px 12px 3px rgba(0,0,0,0.07);
	border-top: 4px solid var(--yellow);
	padding: 0;
	background-color: var(--white);
}
.resource .img {
	width: 100%;
	position: relative;
}
.resource .img img {
	width: 100%;
}
.resource .button-holder {
	position: absolute;
	display: flex;
	justify-content: center;
	align-items: center;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}
.resource .button-holder:hover .green-btn,
.resource .button-holder:focus .green-btn {
	background-color: var(--darkgreen);
}
.resource .copy {
	padding: 15px;
}
.resource h3 {
	color: var(--blue);
	font: normal normal bold 21px/24px Roboto;
}
.resource .byline {
	font: normal normal bold 18px/24px Roboto;
	padding-bottom: 10px;
}
.resource .desc {
	font: normal normal normal 18px/24px Roboto;
	padding-bottom: 10px;
}

.resource-controls {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
}

.resource-controls label {
	display: grid;
	grid-template-columns: 1em auto;
	gap: 0.5em;
	margin-bottom: 20px;
	background-color: var(--green);
	border-radius: 26px;
	padding: 10px 20px;
	color: var(--white);
	user-select: none;
}
@supports(selector(:has(p))) {
	.resource-controls label {
		background-color: var(--black70);
	}
	.resource-controls label:has(input:checked) {
		background-color: var(--green);
	}
}
.resource-controls label:not(:last-of-type) {
	margin-right: 15px;
}
.resource-controls input[type="checkbox"] {
	-webkit-appearance: none;
	appearance: none;
	margin: 0;
	font: inherit;
	color: currentColor;
	width: 1.15em;
	height: 1.15em;
	border: 0.15em solid currentColor;
	border-radius: 50%;
	transform: translateY(-0.075em);
	display: grid;
	place-content: center;
	background-color: var(--white);
}
.resource-controls input[type="checkbox"]::before {
	content: "";
	width: 0.65em;
	height: 0.65em;
	transform: scale(0);
	transition: 120ms transform ease-in-out;
	box-shadow: inset 1em 1em var(--form-control-color);
	transform-origin: bottom left;
	clip-path: polygon(14% 44%, 0 65%, 50% 100%, 100% 16%, 80% 0%, 43% 62%);
}
.resource-controls input[type="checkbox"]:checked::before {
	transform: scale(1);
}
.resource-controls input[type="checkbox"]:focus {
	outline: max(2px, 0.15em) solid currentColor;
	outline-offset: max(2px, 0.15em);
}

.webinar-content,
.podcasts-content,
.support-content,
.insights-content {
	display: none;
}
.webinar .webinar-content,
.podcasts .podcasts-content,
.support .support-content,
.insights .insights-content {
	display: block;
}

.open-modal {
	cursor: pointer;
}

#overlay-form .form {
	padding: 20px;
	max-width: 400px;
	overflow-y: auto;
}

.video-container {
	position: relative;
	padding-bottom: 56.25%;
	padding-top: 30px;
	height: 0;
	overflow: hidden;
	width: 700px;
	max-width: 100vw;
}

.video-container iframe,
.video-container object,
.video-container embed {
	border: 0;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}
